From 83719cbb90c28cb8d58e32872b762bfaac1ad900 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Sat, 12 Sep 2009 13:23:09 +0200 Subject: [PATCH] Fix warning about pointer/int confusion https://bugzilla.gnome.org/show_bug.cgi?id=594679 --- tests/testwindows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testwindows.c b/tests/testwindows.c index d2d5f0dfe6..24c31546b4 100644 --- a/tests/testwindows.c +++ b/tests/testwindows.c @@ -1034,7 +1034,7 @@ main (int argc, char **argv) button = gtk_button_new_with_label ("Restack above"); g_signal_connect (button, "clicked", G_CALLBACK (restack_clicked), - 1); + GINT_TO_POINTER (1)); gtk_table_attach_defaults (GTK_TABLE (table), button, 2, 3, -- 2.30.2